home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / linux-sound-base.config < prev    next >
Text File  |  2008-09-15  |  428b  |  23 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. . /usr/share/debconf/confmodule
  6. db_version 2.0
  7.  
  8. if \
  9.     [ -f /etc/modprobe.d/blacklist-oss ] \
  10.     && [ ! -f /etc/modprobe.d/blacklist-alsa ]
  11. then
  12.     db_set linux-sound-base/sound_system ALSA || :
  13. elif \
  14.     [ ! -f /etc/modprobe.d/blacklist-oss ] \
  15.     && [ -f /etc/modprobe.d/blacklist-alsa ]
  16. then
  17.     db_set linux-sound-base/sound_system OSS || :
  18. fi
  19.  
  20. db_input low linux-sound-base/sound_system || :
  21. db_go || :
  22. db_stop || :
  23.